013034165e4f13d7aa6cb0e1a82688117febfd78,zcommon/src/org/zkoss/xel/el/ELFactory.java,ELFactory,parseExpression,#XelContext#String#Class#,50

Before Change


		try {
			return new ELXelExpression(
				_eval.parseExpression(expression, expectedType,
					xelc != null ? new XelELMapper(xelc.getFunctionMapper()): null));
		} catch (ELException ex) {
			throw new XelException("Failed to parse "+expression, ex);
		}

After Change


	throws XelException {
		return new ELXelExpression(
			_eval.parseExpression(expression, expectedType,
				xelc != null ? xelc.getFunctionMapper(): null));
	}
	public Object evaluate(XelContext xelc, String expression,
	Class expectedType)